diff options
| author | Factiven <[email protected]> | 2023-07-20 12:25:11 +0700 |
|---|---|---|
| committer | Factiven <[email protected]> | 2023-07-20 12:25:11 +0700 |
| commit | 498a10c96f15381c17bfec293da0208c069d388c (patch) | |
| tree | 95ce19e383262e54af5fb00ae04ae8783e8cd352 /pages/en/profile/[user].js | |
| parent | fix footer layering (diff) | |
| download | moopa-498a10c96f15381c17bfec293da0208c069d388c.tar.xz moopa-498a10c96f15381c17bfec293da0208c069d388c.zip | |
Update v3.6.6
> Added functionality to see more anime at home page
> fixed some bugs
Diffstat (limited to 'pages/en/profile/[user].js')
| -rw-r--r-- | pages/en/profile/[user].js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/pages/en/profile/[user].js b/pages/en/profile/[user].js index 6bc804e..b66699b 100644 --- a/pages/en/profile/[user].js +++ b/pages/en/profile/[user].js @@ -187,7 +187,11 @@ export default function MyList({ media, sessions, user, time }) { {media.length !== 0 ? ( filterMedia(listFilter).map((item, index) => { return ( - <div key={index} className="flex flex-col gap-5 mx-3"> + <div + key={index} + id={item.status?.toLowerCase()} + className="flex flex-col gap-5 mx-3" + > <h1 className="font-karla font-bold text-xl">{item.name}</h1> <table className="bg-secondary rounded-lg"> <thead> |